projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
94e6302
)
(smtpmail-via-smtp): Use ascii-case-table when downcasing.
author
Chong Yidong
<cyd@stupidchicken.com>
Wed, 4 Apr 2007 15:38:04 +0000
(15:38 +0000)
committer
Chong Yidong
<cyd@stupidchicken.com>
Wed, 4 Apr 2007 15:38:04 +0000
(15:38 +0000)
lisp/mail/smtpmail.el
patch
|
blob
|
history
diff --git
a/lisp/mail/smtpmail.el
b/lisp/mail/smtpmail.el
index 4d19e9371fd7deef1e71fcff094c4faeec8f1cd3..66c4bdd8df71587dec3d1056a7fdc45e252a2997 100644
(file)
--- a/
lisp/mail/smtpmail.el
+++ b/
lisp/mail/smtpmail.el
@@
-691,8
+691,10
@@
This is relative to `smtpmail-queue-dir'.")
(>= (car response-code) 400))
(throw 'done nil)))
(dolist (line (cdr (cdr response-code)))
- (let ((name (mapcar (lambda (s) (intern (downcase s)))
- (split-string (substring line 4) "[ ]"))))
+ (let ((name
+ (with-case-table ascii-case-table
+ (mapcar (lambda (s) (intern (downcase s)))
+ (split-string (substring line 4) "[ ]")))))
(and (eq (length name) 1)
(setq name (car name)))
(and name